home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / bbs / cddk9606.zip / FREE.ARJ / INIT.SCR < prev    next >
Text File  |  1996-06-14  |  5KB  |  117 lines

  1.  
  2. ; Greetings, Sysop!
  3. ;
  4. ; This is the standard configuration file included with many products
  5. ; designed with the Concerto Door Development Kit.  You will not have
  6. ; to modify this script unless you run a unique system or want to change
  7. ; the initialization sequence.
  8.  
  9.  
  10. ; ┌─────────────────────────────────────────────────────────────────────────┐
  11. ; │ ▒▒▒ Initialization of Variables ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  12. ; └─────────────────────────────────────────────────────────────────────────┘
  13.  
  14.   GetParam B, Baud            ; Baud rate for the current session
  15.   GetParam C, ComPort         ; Communications port
  16.   GetParam N, Node            ; Node number
  17.   GetParam O, LockedBaud      ; Locked baud rate
  18.   GetParam P, DropFile        ; Full path and name of the drop file
  19.  
  20.   AVATARClrScrColor = 3       ; Default AVATAR clear-screen color
  21.   CheckSnow         = No      ; Slow down output for older monitors?
  22.   DBS               = Yes     ; Destructive backspaces?
  23.   DirectVideo       = Yes     ; Write directly to video RAM (faster)?
  24.  
  25.   Randomize Timer
  26.  
  27.  
  28. ; You should assign the next few variables if the information is not
  29. ; passed in the drop file (refer to your BBSs' documentation for details).
  30.  
  31. ;  BBSName    = Erebus
  32. ;  SysopFirst = David
  33. ;  SysopLast  = Pinch
  34. ;  UserLocation = Elsewhere
  35.  
  36.  
  37. ; ┌─────────────────────────────────────────────────────────────────────────┐
  38. ; │ ▒▒▒ Session (Communications) Startup ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  39. ; └─────────────────────────────────────────────────────────────────────────┘
  40.  
  41.   LoadDropFile
  42.   InitFOSSIL
  43.   DetectANSI "~|[ansi detection]~|"
  44.   Color 7
  45.  
  46.  
  47. ; ┌─────────────────────────────────────────────────────────────────────────┐
  48. ; │ ▒▒▒ Setup Chat-Mode ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  49. ; └─────────────────────────────────────────────────────────────────────────┘
  50.  
  51.   ChatGreeting   = "~FGreeting.ANS|~|"
  52.   ChatGoodbye    = "|0F~|■|07 Exiting chat mode...~|~|"
  53.   ChatExecPrompt = "|07Command: "
  54.   ChatRemoteExit = True
  55.  
  56.   ; ChatGreeting is shown upon entry into the chat mode.  ChatGoodbye is
  57.   ; shown when the chat mode is terminated.  ChatExecPrompt is displayed
  58.   ; when the sysop enters the chat-mode command interpreter.  Refer to
  59.   ; SYSOP.DOC for more information.
  60.  
  61.   IceChatColors
  62.  
  63.  
  64. ; ┌─────────────────────────────────────────────────────────────────────────┐
  65. ; │ ▒▒▒ Status Lines ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  66. ; └─────────────────────────────────────────────────────────────────────────┘
  67.  
  68.   Status Help,     2, "|3F Alt-C |31Chat  |3FAlt-H |31Hang Up  |3FAlt-X |31Exit  |3FPgUp/PgDn |31Fade In/Out  |3FF-10 |31Hide~CE~| {Application} {Version} ∙ {Copyright}~CE"
  69.   Status UserInfo, 2, "|3F {UserFirst} {UserLast} of {UserLocation} (security {Security})~CE~||31 {BBSName} ∙ Sysop: {SysopFirst} {SysopLast} ∙ {Baud} baud ∙ COM{ComPort} ∙ Node {Node}~CE"
  70.   Status Quote,    1, "|31 What is now proved was once only imagin'd. - William Blake~CE"
  71.   Status Peter,    1, "|31 Piotr Ilich Tchaikovsky [1840 - 1893] · Rest in peace, friend...~CE"
  72.   ;        │    │    │
  73.   ;        │    │    └─ The text shown in the status line.  You may use any
  74.   ;        │    │       variables, color codes, or control codes.  Be sure to
  75.   ;        │    │       end the string with the ~CE control code, which erases
  76.   ;        │    │       the text between the cursor and the right side of the
  77.   ;        │    │       screen.  Otherwise, you may see parts of the previous
  78.   ;        │    │       status line when switching lines!      
  79.   ;        │    │
  80.   ;        │    └────── The size of the status line.
  81.   ;        │
  82.   ;        └─────────── A name associated with this particular status line.
  83.   ;                     From this point on, you will always use this name
  84.   ;                     to identify the status line.  YOU MUST USE A UNIQUE
  85.   ;                     NAME!  That is, don't use the name of a command or
  86.   ;                     variable.
  87.  
  88.   
  89. ; ┌─────────────────────────────────────────────────────────────────────────┐
  90. ; │ ▒▒▒ SysKeys (Function Keys) ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ │
  91. ; └─────────────────────────────────────────────────────────────────────────┘
  92.  
  93.   SysKey $2E00, "Chat"                ; Alt-C
  94.   SysKey $2300, "HangUp Exit 0"       ; Alt-H
  95.   SysKey $3100, "LineNoise"           ; Alt-N
  96.   SysKey $2D00, "Exit 0"              ; Alt-X
  97.   SysKey $5100, "FadeOut"             ; Page Down
  98.   SysKey $4900, "FadeIn"              ; Page Up
  99.   SysKey $3B00, "ShowStatus Help"     ; F1
  100.   SysKey $3C00, "ShowStatus UserInfo" ; F2
  101.   SysKey $3D00, "ShowStatus Peter"    ; F3
  102.   SysKey $3E00, "ShowStatus Quote"    ; F4
  103.   SysKey $4400, "HideStatus"          ; F10
  104.   SysKey $4800, "IncTimeLeft 5"       ; Arrow Up
  105.   SysKey $5000, "DecTimeLeft 5"       ; Arrow Down
  106.   ;        │      │
  107.   ;        │      └─ Command(s) to execute when the scan code is pressed
  108.   ;        │         on the local computer.  Remote callers cannot use
  109.   ;        │         SysKeys.
  110.   ;        │
  111.   ;        └──────── Keyboard scan code. The door will execute the specified
  112.   ;                  commands when the scan code is pressed on the local
  113.   ;                  computer.  Refer to SYSOP.DOC for a list of scan codes.
  114.  
  115.  
  116. CheckLocalMode
  117.